home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / pcboard / sat114.zip / CONFIG.DOC < prev    next >
Text File  |  1994-05-31  |  4KB  |  104 lines

  1.  
  2. ╓─────────────────────────────────────────────────────────────────────────────╖
  3. ║ ░░░░░ PPSS Series Configuration Information ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║
  4. ╙─────────────────────────────────────────────────────────────────────────────╜
  5.  
  6. All PCBoard Professional Sysop Series (PPSS) programs and packages operate
  7. out of a unified configuration file called PPSS.CFG, the format of
  8. which is discussed below.
  9.  
  10. The PPSS.CFG file is automatically created and/or added to as a program is
  11. run for the first time.  The PPSS.CFG file can be specified on the command
  12. line, the environment, the current directory, or in the DOS path. 
  13.  
  14. To specify the PPSS.CFG on the command line, use the keyword
  15. parameter PPSSCFG, i.e.
  16.  
  17.         PROGRAM CFG=C:\WORK\PPSS.CFG
  18.  
  19. To specify the PPSS.CFG in the environment, use the PPSSCFG variable, i.e.
  20.  
  21.         SET PPSSCFG=C:\WORK\PPSS.CFG
  22.  
  23. If you get an "Out of environment space" message, consult your DOS manual
  24. for information on increasing your DOS environment space.  The SET statement
  25. is best placed in your AUTOEXEC.BAT file so it will automatically load
  26. whenever you reboot or turn on your machine.
  27.  
  28. In order of search for the PPSS.CFG file, PPSS programs will first use a
  29. provided command line argument, then the environment, then the current
  30. directory, then the DOS Path.
  31.  
  32. ╓─────────────────────────────────────────────────────────────────────────────╖
  33. ║ ░░░░░ PPSS.CFG Format ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║
  34. ╙─────────────────────────────────────────────────────────────────────────────╜
  35.  
  36. The PPSS.CFG file has a general configuration area denoted by the marker
  37. "[General Configuration]" which supplies general configuration items such as
  38. Version, BBSName, SysopName, PCBDir, PKZip, and TextEditor.
  39.  
  40. Program configuration areas are used to specify items for a particular
  41. program such as Registration, Version and WarningLevel.
  42.  
  43.      SAMPLE FORMAT
  44.      column 1 --+
  45.                 V
  46.  
  47.                 ; This is a comment
  48.  
  49.                 [General Configuration]
  50.                 Version=100
  51.                 BBSName=Your BBS Name Here
  52.                 SysopName=Your Name
  53.                 PCBDir=C:\P
  54.                 PKZIP=C:\UTIL\PKZIP.EXE
  55.                 PKUNZIP=C:\UTIL\PKUNZIP.EXE
  56.                 TextEditor=C:\UTIL\Q.EXE
  57.  
  58.                 [Message Base Check]
  59.                 Version=100
  60.                 VerifyLevel=1
  61.                 ErrorLevel=1
  62.  
  63. The PPSS.CFG file can be edited using any text editor.  If you use an
  64. editor that inserts control codes, be sure to save in "plain text"
  65. format.
  66.  
  67.  - The order of areas within PPSS.CFG is also not important.
  68.  - The order of parameters within an area is not important.
  69.  - Parameter keywords and area titles are case-insensitive.
  70.  - Blank lines are ignored.
  71.  - Comments start with a semi-colon (';') in column one.
  72.  - All area titles and parameters should begin in column one.
  73.  - There should be no spaces between a keyword and the '=' sign,
  74.      and no spaces between the '=' sign and the parameter.
  75.      The sole exception is certain text items such as report titles.
  76.  
  77. ╓─────────────────────────────────────────────────────────────────────────────╖
  78. ║ ░░░░░ Command Line Overrides ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ ║
  79. ╙─────────────────────────────────────────────────────────────────────────────╜
  80.  
  81. Many PPSS program parameters can be overridden at run time via the command
  82. line. Typically, a program will allow both long (keyword) and short
  83. (character)parameter overrides and the use of either or neither of '-' and
  84. '/' as short parameter markers.  Check the individual program documentation 
  85. for specifics on allowed overrides for each program. Keyword indicators are
  86. not case-sensitive.  Character indicators may be case-sensitive on a
  87. program-by-program basis but usually are not. 
  88.  
  89. Examples:
  90.  
  91.         PROGRAM VERIFYLEVEL=1 WARNINGLEVEL=1
  92.  
  93.         PROGRAM WarningLevel=1 VerifyLevel=1
  94.  
  95.         PROGRAM /V1 /W1
  96.  
  97.         PROGRAM -W1 -v1
  98.  
  99.         PROGRAM w1 v1
  100.  
  101.  
  102. Since all command line parameter overrides are keyword or character
  103. flagged, order is not important.
  104.